home *** CD-ROM | disk | FTP | other *** search
XSetup plugin | 2001-04-26 | 1.1 KB | 40 lines |
- "FILE"="Xteq Systems X-Setup Plugin 5.0"
- "TYPE"="9"
- "COUNT"="1"
- "UIPATH"="Information\Core"
- "NAME"="Windows Version"
- "VERSION"="2.004"
- "LANGUAGE"="VBScript"
- "TEXT 1"="na na"
- "DESCRIPTION 1"="This plug-in shows which OS you are running (very useful, isn't it?)"
- "AUTHOR"="Xteq Systems"
- "CONTACTURL"="http://www.xteq.com"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
-
-
- 'Called when the Plugin is started
- Sub Plugin_Initialize
- Call SetUIElement(1,"1) Windows 95 (Win95)")
- Call SetUIElement(2,"2) Windows NT (WinNT)")
- Call SetUIElement(3,"3) Windows 98 (Win98)")
- Call SetUIElement(4,"4) Windows 2000 (Win2K)")
- Call SetUIElement(5,"5) Windows Millennium (WinME)")
- Call SetUIElement(6,"6) Windows XP (WinXP)")
-
- i=GetWinVer
- Call SetUIElementEx(i,True)
- Call Disable()
- End Sub
-
- 'Called when the Plugin should validate the Data the user has entered
- Sub Plugin_CheckData(ElementIndex)
- End Sub
-
- 'Called when the Plugin should apply the changes
- Sub Plugin_Apply(ElementIndex,ElementSubIndex)
- End Sub
-
- 'Called when the Plugin is about to be removed from memory
- Sub Plugin_Terminate
- End Sub
-